home *** CD-ROM | disk | FTP | other *** search
/ Internet.Works 39 / Issue 39.iso / pc / PCSoftware / EditML Pro 1.0 / EditMLProv1.0Setup.exe / Main / bids-table.xsl < prev    next >
Encoding:
Extensible Markup Language  |  2000-10-09  |  784 b   |  19 lines

  1. <?xml version="1.0"?>
  2. <xsl:stylesheet xmlns:xsl="http://www.w3.org/TR/WD-xsl">
  3.   <xsl:template match="/">
  4.     <TABLE STYLE="border:1px solid black">
  5.       <TR STYLE="font-size:12pt; font-family:Verdana; font-weight:bold; text-decoration:underline">
  6.         <TD>Price</TD>
  7.         <TD STYLE="background-color:lightgrey">Time</TD>
  8.         <TD>Bidder</TD>
  9.       </TR>
  10.       <xsl:for-each select="AUCTIONBLOCK/ITEM/BIDS/BID">
  11.         <TR STYLE="font-family:Verdana; font-size:12pt; padding:0px 6px">
  12.           <TD>$<xsl:value-of select="PRICE"/></TD>
  13.           <TD STYLE="background-color:lightgrey"><xsl:value-of select="TIME"/></TD>
  14.           <TD><xsl:value-of select="BIDDER"/></TD>
  15.         </TR>
  16.       </xsl:for-each>
  17.     </TABLE>
  18.   </xsl:template>
  19. </xsl:stylesheet>